home *** CD-ROM | disk | FTP | other *** search
/ Champak 138 / Volume 138 Aug 19 2011 - Damaged.iso / Games / snowball.swf / scripts / frame_28 / DoAction.as
Text File  |  2011-08-19  |  3KB  |  104 lines

  1. allowreset = 1;
  2. ballspeed = 2;
  3. recordweight = 0;
  4. noofchampionships = 0;
  5. worldrecord = 2000;
  6. nationalrecord = 1250;
  7. regionalrecord = 1000;
  8. hometownrecord = 750;
  9. backyardrecord = 500;
  10. n_world = 0;
  11. n_national = 0;
  12. n_regional = 0;
  13. n_hometown = 0;
  14. n_backyard = 0;
  15. aip1 = "Brad ";
  16. aip2 = "John F ";
  17. aip3 = "Chip Dale ";
  18. aip4 = "Wayne ";
  19. aip5 = "Ahmed ";
  20. aip6 = "Zach ";
  21. aip7 = "Joshiwara ";
  22. aip8 = "Inglor ";
  23. aip9 = "Kuro ";
  24. aip10 = "Orb ";
  25. aip11 = "Zielak ";
  26. aip12 = "Eric ";
  27. aip13 = "Shoukei ";
  28. aip14 = "Tom ";
  29. aip15 = "Wade ";
  30. aip16 = "Lil Jim ";
  31. aip17 = "Clark ";
  32. aip18 = "Bruce ";
  33. aip19 = "Mark ";
  34. aip20 = "Daniel ";
  35. aip21 = "Kurt ";
  36. aip22 = "Eddie ";
  37. aip23 = "Sad Girl ";
  38. aip24 = "Tyler ";
  39. aip25 = "Botsman ";
  40. aip26 = "Vincent ";
  41. aip27 = "Ben ";
  42. aip28 = "Eiji ";
  43. aip29 = "Akira ";
  44. aip30 = "Tatsuya ";
  45. aip31 = "Ichigo ";
  46. aip32 = "Kenshin ";
  47. aip33 = "Goku ";
  48. aip34 = "Gohan ";
  49. aip35 = "Sara ";
  50. aip36 = "Sally ";
  51. aip37 = "Jess ";
  52. aip38 = "Jennifer ";
  53. aip39 = "Happy Liau ";
  54. aip40 = "Lord Evarts ";
  55. aip41 = "Connie ";
  56. aip42 = "Patsy ";
  57. aip43 = "Liza ";
  58. aip44 = "Tanya ";
  59. aip45 = "Belinda ";
  60. aip46 = "Yuri ";
  61. aip47 = "Yoko ";
  62. aip48 = "Shizuka ";
  63. aip49 = "Aori ";
  64. aip50 = "Irene ";
  65. aip51 = "Helen S ";
  66. aip52 = "Viki ";
  67. aip53 = "Sarima ";
  68. aip54 = "Delilah ";
  69. aip55 = "Georgia ";
  70. aip56 = "Michelle ";
  71. aip57 = "Mike ";
  72. aip58 = "Ivan ";
  73. aip59 = "Laura ";
  74. aip60 = "Tammy ";
  75. worldchampion = _root["aip" + (random(60) + 1)];
  76. nationalchampion = _root["aip" + (random(60) + 1)];
  77. regionalchampion = _root["aip" + (random(60) + 1)];
  78. hometownchampion = _root["aip" + (random(60) + 1)];
  79. backyardchampion = _root["aip" + (random(60) + 1)];
  80. _quality = "MEDIUM";
  81. Stage.showMenu = false;
  82. _root.savefile = SharedObject.getLocal("ags");
  83. if(_root.savefile.data.playername != undefined)
  84. {
  85.    _root.ballspeed = _root.savefile.data.ballspeed;
  86.    _root.recordweight = _root.savefile.data.recordweight;
  87.    _root.noofchampionships = _root.savefile.data.noofchampionships;
  88.    _root.worldrecord = _root.savefile.data.worldrecord;
  89.    _root.nationalrecord = _root.savefile.data.nationalrecord;
  90.    _root.regionalrecord = _root.savefile.data.regionalrecord;
  91.    _root.hometownrecord = _root.savefile.data.hometownrecord;
  92.    _root.backyardrecord = _root.savefile.data.backyardrecord;
  93.    _root.n_world = _root.savefile.data.n_world;
  94.    _root.n_national = _root.savefile.data.n_national;
  95.    _root.n_regional = _root.savefile.data.n_regional;
  96.    _root.n_hometown = _root.savefile.data.n_hometown;
  97.    _root.n_backyard = _root.savefile.data.n_backyard;
  98.    _root.worldchampion = _root.savefile.data.worldchampion;
  99.    _root.nationalchampion = _root.savefile.data.nationalchampion;
  100.    _root.regionalchampion = _root.savefile.data.regionalchampion;
  101.    _root.hometownchampion = _root.savefile.data.hometownchampion;
  102.    _root.backyardchampion = _root.savefile.data.backyardchampion;
  103. }
  104.